Create a theme test in cts and updated reference pictures
1) Move android.host.holo to android.host.theme
2) Migrate other tests from android.holo to android.host.theme
3) Skip theme test for watch and tv
4) Delete the CtsHoloTestCases

bug: 17160329
Change-Id: I17bddcbd3a97d5638ba77a6f6b7b0b492c63d4cb
diff --git a/CtsTestCaseList.mk b/CtsTestCaseList.mk
index a72fef6..9d81932 100644
--- a/CtsTestCaseList.mk
+++ b/CtsTestCaseList.mk
@@ -37,11 +37,11 @@
     CtsDeviceTaskswitchingAppB \
     CtsDeviceTaskswitchingControl \
     CtsDeviceUi \
-    CtsHoloDeviceApp \
     CtsMonkeyApp \
     CtsMonkeyApp2 \
     CtsSomeAccessibilityServices \
     CtsTestStubs \
+    CtsThemeDeviceApp \
     SignatureTest \
     TestDeviceSetup \
     CtsUiAutomatorApp \
@@ -88,7 +88,6 @@
     CtsGraphicsTestCases \
     CtsGraphics2TestCases \
     CtsHardwareTestCases \
-    CtsHoloTestCases \
     CtsJniTestCases \
     CtsKeystoreTestCases \
     CtsLocationTestCases \
@@ -133,10 +132,10 @@
 cts_host_libraries := \
     CtsAdbTests \
     CtsAppSecurityTests \
-    CtsHoloHostTestCases \
     CtsHostJank \
     CtsHostUi \
     CtsMonkeyTestCases \
+    CtsThemeHostTestCases \
     CtsUsbTests
 
 # Native test executables that need to have associated test XMLs.
diff --git a/hostsidetests/holo/Android.mk b/hostsidetests/holo/Android.mk
deleted file mode 100644
index 4f0c3e8..0000000
--- a/hostsidetests/holo/Android.mk
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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)
-
-LOCAL_JAVA_RESOURCE_DIRS := assets/$(PLATFORM_SDK_VERSION)/
-
-LOCAL_MODULE_TAGS := optional
-
-# Must match the package name in CtsTestCaseList.mk
-LOCAL_MODULE := CtsHoloHostTestCases
-
-LOCAL_JAVA_LIBRARIES := cts-tradefed ddmlib-prebuilt tradefed-prebuilt
-
-LOCAL_CTS_TEST_PACKAGE := android.host.holo
-
-include $(BUILD_CTS_HOST_JAVA_LIBRARY)
-
-include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/hostsidetests/holo/app/Android.mk b/hostsidetests/holo/app/Android.mk
deleted file mode 100644
index d390418..0000000
--- a/hostsidetests/holo/app/Android.mk
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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_STATIC_JAVA_LIBRARIES := android-support-test
-
-LOCAL_SRC_FILES := $(call all-java-files-under, src)
-
-LOCAL_PACKAGE_NAME := CtsHoloDeviceApp
-
-LOCAL_SDK_VERSION := current
-
-include $(BUILD_CTS_PACKAGE)
diff --git a/hostsidetests/holo/app/AndroidManifest.xml b/hostsidetests/holo/app/AndroidManifest.xml
deleted file mode 100755
index d27c266..0000000
--- a/hostsidetests/holo/app/AndroidManifest.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<?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.holo.app">
-
-    <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" />
-        <activity android:name=".CaptureActivity" />
-    </application>
-
-    <!--  self-instrumenting test package. -->
-    <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
-                     android:targetPackage="android.holo.app"
-                     android:label="Generates Holo reference images"/>
-
-</manifest>
-
diff --git a/hostsidetests/holo/app/res/drawable-land-400dpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-400dpi/display_info.png
deleted file mode 100644
index 1b74e01..0000000
--- a/hostsidetests/holo/app/res/drawable-land-400dpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-hdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-hdpi/display_info.png
deleted file mode 100644
index a665018..0000000
--- a/hostsidetests/holo/app/res/drawable-land-hdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-ldpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-ldpi/display_info.png
deleted file mode 100644
index 64c8f3a..0000000
--- a/hostsidetests/holo/app/res/drawable-land-ldpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-mdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-mdpi/display_info.png
deleted file mode 100644
index f3e6765..0000000
--- a/hostsidetests/holo/app/res/drawable-land-mdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-tvdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-tvdpi/display_info.png
deleted file mode 100644
index 99de970..0000000
--- a/hostsidetests/holo/app/res/drawable-land-tvdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-xhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-xhdpi/display_info.png
deleted file mode 100644
index 4c0c2b4..0000000
--- a/hostsidetests/holo/app/res/drawable-land-xhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-xxhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-xxhdpi/display_info.png
deleted file mode 100644
index c6f7fd8..0000000
--- a/hostsidetests/holo/app/res/drawable-land-xxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-land-xxxhdpi/display_info.png b/hostsidetests/holo/app/res/drawable-land-xxxhdpi/display_info.png
deleted file mode 100644
index 7ad9b52..0000000
--- a/hostsidetests/holo/app/res/drawable-land-xxxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/app/res/layout/checkbox.xml b/hostsidetests/holo/app/res/layout/checkbox.xml
deleted file mode 100644
index 8eeac39..0000000
--- a/hostsidetests/holo/app/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/hostsidetests/holo/app/res/layout/chronometer.xml b/hostsidetests/holo/app/res/layout/chronometer.xml
deleted file mode 100644
index c4ad8d3..0000000
--- a/hostsidetests/holo/app/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/hostsidetests/holo/app/res/layout/holo_test.xml b/hostsidetests/holo/app/res/layout/holo_test.xml
deleted file mode 100644
index 0ae6953..0000000
--- a/hostsidetests/holo/app/res/layout/holo_test.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?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:id="@+id/base_view">
-</LinearLayout>
diff --git a/hostsidetests/holo/app/res/values/strings.xml b/hostsidetests/holo/app/res/values/strings.xml
deleted file mode 100644
index 02b4080..0000000
--- a/hostsidetests/holo/app/res/values/strings.xml
+++ /dev/null
@@ -1,79 +0,0 @@
-<?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>
-
-</resources>
diff --git a/hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java b/hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java
deleted file mode 100644
index 9551877..0000000
--- a/hostsidetests/holo/app/src/android/holo/app/CaptureActivity.java
+++ /dev/null
@@ -1,87 +0,0 @@
-/*
- * 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.holo.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 = 5;
-
-    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/holo/app/src/android/holo/app/CaptureHolo.java b/hostsidetests/holo/app/src/android/holo/app/CaptureHolo.java
deleted file mode 100644
index 228cd9c..0000000
--- a/hostsidetests/holo/app/src/android/holo/app/CaptureHolo.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * 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.holo.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/holo/app/src/android/holo/app/DisplayInfoActivity.java b/hostsidetests/holo/app/src/android/holo/app/DisplayInfoActivity.java
deleted file mode 100644
index 69c3914..0000000
--- a/hostsidetests/holo/app/src/android/holo/app/DisplayInfoActivity.java
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * 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.holo.app;
-
-import android.app.Activity;
-import android.holo.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_400:
-                return "400dpi";
-
-            case DisplayMetrics.DENSITY_XXHIGH:
-                return "xxhdpi";
-
-            case DisplayMetrics.DENSITY_XXXHIGH:
-                return "xxxhdpi";
-
-            case DisplayMetrics.DENSITY_TV:
-                return "tvdpi";
-
-            default:
-                return "" + metrics.densityDpi;
-        }
-    }
-}
diff --git a/hostsidetests/holo/app/src/android/holo/app/HoloDeviceActivity.java b/hostsidetests/holo/app/src/android/holo/app/HoloDeviceActivity.java
deleted file mode 100644
index bfaf865..0000000
--- a/hostsidetests/holo/app/src/android/holo/app/HoloDeviceActivity.java
+++ /dev/null
@@ -1,261 +0,0 @@
-/*
- * 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.holo.app;
-
-import android.app.Activity;
-import android.content.Intent;
-import android.graphics.Bitmap;
-import android.graphics.Bitmap.CompressFormat;
-import android.graphics.Canvas;
-import android.holo.app.R;
-import android.os.AsyncTask;
-import android.os.Environment;
-import android.os.Bundle;
-import android.os.Handler;
-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;
-
-    @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);
-
-        final LinearLayout baseView = (LinearLayout) findViewById(R.id.base_view);
-
-        mView = getLayoutInflater().inflate(layout.mId, baseView, false);
-        baseView.addView(mView);
-        if (layout.mModifier != null) {
-            layout.mModifier.modify(mView);
-        }
-        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 Modifier mModifier;
-
-        private Layout(int id, String name, Modifier modifier) {
-            mId = id;
-            mName = name;
-            mModifier = modifier;
-        }
-    }
-
-    private static interface Modifier {
-
-        public void modify(View v);
-    }
-
-    private static final Layout[] layouts = {
-            new Layout(R.layout.button, "button", null),
-            new Layout(R.layout.button, "button_pressed", new Modifier() {
-                @Override
-                public void modify(View v) {
-                    v.setPressed(true);
-                }
-            }),
-            new Layout(R.layout.checkbox, "checkbox", null),
-            new Layout(R.layout.checkbox, "checkbox_checked", new Modifier() {
-                @Override
-                public void modify(View v) {
-                    ((CheckBox) v).setChecked(true);
-                }
-            }),
-            new Layout(R.layout.chronometer, "chronometer", null)
-    };
-}
diff --git a/hostsidetests/holo/assets/17/hdpi.zip b/hostsidetests/holo/assets/17/hdpi.zip
deleted file mode 100644
index dec6ed0..0000000
--- a/hostsidetests/holo/assets/17/hdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/17/ldpi.zip b/hostsidetests/holo/assets/17/ldpi.zip
deleted file mode 100644
index 5b706fc..0000000
--- a/hostsidetests/holo/assets/17/ldpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/17/mdpi.zip b/hostsidetests/holo/assets/17/mdpi.zip
deleted file mode 100644
index 9390873..0000000
--- a/hostsidetests/holo/assets/17/mdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/17/tvdpi.zip b/hostsidetests/holo/assets/17/tvdpi.zip
deleted file mode 100644
index 1e2ccc6..0000000
--- a/hostsidetests/holo/assets/17/tvdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/17/xhdpi.zip b/hostsidetests/holo/assets/17/xhdpi.zip
deleted file mode 100644
index fdf1ae7..0000000
--- a/hostsidetests/holo/assets/17/xhdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/17/xxhdpi.zip b/hostsidetests/holo/assets/17/xxhdpi.zip
deleted file mode 100644
index ab5bc6b..0000000
--- a/hostsidetests/holo/assets/17/xxhdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/18/hdpi.zip b/hostsidetests/holo/assets/18/hdpi.zip
deleted file mode 100644
index 79e045f..0000000
--- a/hostsidetests/holo/assets/18/hdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/18/ldpi.zip b/hostsidetests/holo/assets/18/ldpi.zip
deleted file mode 100644
index 4321274..0000000
--- a/hostsidetests/holo/assets/18/ldpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/18/mdpi.zip b/hostsidetests/holo/assets/18/mdpi.zip
deleted file mode 100644
index 9872b16..0000000
--- a/hostsidetests/holo/assets/18/mdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/18/tvdpi.zip b/hostsidetests/holo/assets/18/tvdpi.zip
deleted file mode 100644
index f18d019..0000000
--- a/hostsidetests/holo/assets/18/tvdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/18/xhdpi.zip b/hostsidetests/holo/assets/18/xhdpi.zip
deleted file mode 100644
index a1f2c65..0000000
--- a/hostsidetests/holo/assets/18/xhdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/18/xxhdpi.zip b/hostsidetests/holo/assets/18/xxhdpi.zip
deleted file mode 100644
index 331baf3..0000000
--- a/hostsidetests/holo/assets/18/xxhdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/18/xxxhdpi.zip b/hostsidetests/holo/assets/18/xxxhdpi.zip
deleted file mode 100644
index 8fc56ae..0000000
--- a/hostsidetests/holo/assets/18/xxxhdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/19/400dpi.zip b/hostsidetests/holo/assets/19/400dpi.zip
deleted file mode 100644
index bc29da9..0000000
--- a/hostsidetests/holo/assets/19/400dpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/19/hdpi.zip b/hostsidetests/holo/assets/19/hdpi.zip
deleted file mode 100644
index ecb45e0..0000000
--- a/hostsidetests/holo/assets/19/hdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/19/ldpi.zip b/hostsidetests/holo/assets/19/ldpi.zip
deleted file mode 100644
index cd5dee6..0000000
--- a/hostsidetests/holo/assets/19/ldpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/19/mdpi.zip b/hostsidetests/holo/assets/19/mdpi.zip
deleted file mode 100644
index 80bb193..0000000
--- a/hostsidetests/holo/assets/19/mdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/19/tvdpi.zip b/hostsidetests/holo/assets/19/tvdpi.zip
deleted file mode 100644
index 1392010..0000000
--- a/hostsidetests/holo/assets/19/tvdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/19/xhdpi.zip b/hostsidetests/holo/assets/19/xhdpi.zip
deleted file mode 100644
index eb973da..0000000
--- a/hostsidetests/holo/assets/19/xhdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/19/xxhdpi.zip b/hostsidetests/holo/assets/19/xxhdpi.zip
deleted file mode 100644
index 6f3f018..0000000
--- a/hostsidetests/holo/assets/19/xxhdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/assets/19/xxxhdpi.zip b/hostsidetests/holo/assets/19/xxxhdpi.zip
deleted file mode 100644
index 1d6b303..0000000
--- a/hostsidetests/holo/assets/19/xxxhdpi.zip
+++ /dev/null
Binary files differ
diff --git a/hostsidetests/holo/src/android/holo/cts/ComparisonTask.java b/hostsidetests/holo/src/android/holo/cts/ComparisonTask.java
deleted file mode 100644
index 36f3759..0000000
--- a/hostsidetests/holo/src/android/holo/cts/ComparisonTask.java
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * 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.holo.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 String DEVICE_PATH = "/storage/emulated/legacy/cts-holo-assets/%s.png";
-
-    private static final int IMAGE_THRESHOLD = 2;
-
-    private final ITestDevice mDevice;
-
-    private final File mReference;
-
-    private final String mName;
-
-    public ComparisonTask(ITestDevice device, File reference, String name) {
-        mDevice = device;
-        mReference = reference;
-        mName = name;
-    }
-
-    public Boolean call() {
-        boolean success = false;
-        File generated = null;
-        try {
-            generated = File.createTempFile("gen_" + mName, ".png");
-
-            mDevice.pullFile(String.format(DEVICE_PATH, 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());
-        } 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/holo/src/android/holo/cts/HoloHostTest.java b/hostsidetests/holo/src/android/holo/cts/HoloHostTest.java
deleted file mode 100644
index 25d1312..0000000
--- a/hostsidetests/holo/src/android/holo/cts/HoloHostTest.java
+++ /dev/null
@@ -1,276 +0,0 @@
-/*
- * 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.holo.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 java.io.File;
-import java.io.FileOutputStream;
-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 HoloHostTest extends DeviceTestCase implements IBuildReceiver {
-
-    private static final String TAG = HoloHostTest.class.getSimpleName();
-
-    private static final int CAPTURE_TIMEOUT = 1 * 1000;//1sec in ms
-
-    private static final int ADB_TIMEOUT = 10 * 60 * 1000;//10mins in ms
-
-    /** The package name of the APK. */
-    private static final String PACKAGE = "android.holo.app";
-
-    /** The file name of the APK. */
-    private static final String APK = "CtsHoloDeviceApp.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 = "ro.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"
-    };
-
-    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 zip = String.format("/%s.zip",
-                getDensityBucket(Integer.parseInt(mDevice.getProperty(DENSITY_PROP))));
-        Log.logAndDisplay(LogLevel.INFO, TAG, "Loading resources from " + zip);
-
-        final ZipInputStream in = new ZipInputStream(this.getClass().getResourceAsStream(zip));
-        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();
-    }
-
-    public void testHoloThemes() throws Exception {
-        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");
-                    mCompletionService.submit(new ComparisonTask(mDevice, ref, name));
-                    numTasks++;
-                } else {
-                    Log.logAndDisplay(LogLevel.ERROR, TAG, "Capture failed: " + name);
-                }
-            }
-        }
-        boolean success = true;
-        for (int i = 0; i < numTasks; i++) {
-            success = mCompletionService.take().get() && success;
-        }
-        assertTrue("Failures in Holo test", success);
-    }
-
-    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/hostsidetests/theme/Android.mk b/hostsidetests/theme/Android.mk
new file mode 100644
index 0000000..8e283a3
--- /dev/null
+++ b/hostsidetests/theme/Android.mk
@@ -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.
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+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..d7ca509
--- /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_STATIC_JAVA_LIBRARIES := android-support-test
+
+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..2f8fb3b
--- /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.support.test.runner.AndroidJUnitRunner"
+                     android:targetPackage="android.theme.app"
+                     android:label="Generates Theme reference images"/>
+
+</manifest>
+
diff --git a/hostsidetests/holo/app/res/drawable-400dpi/display_info.png b/hostsidetests/theme/app/res/drawable-400dpi/display_info.png
similarity index 100%
rename from hostsidetests/holo/app/res/drawable-400dpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-400dpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-hdpi/display_info.png b/hostsidetests/theme/app/res/drawable-hdpi/display_info.png
similarity index 100%
rename from hostsidetests/holo/app/res/drawable-hdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-hdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-ldpi/display_info.png b/hostsidetests/theme/app/res/drawable-ldpi/display_info.png
similarity index 100%
rename from hostsidetests/holo/app/res/drawable-ldpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-ldpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-mdpi/display_info.png b/hostsidetests/theme/app/res/drawable-mdpi/display_info.png
similarity index 100%
rename from hostsidetests/holo/app/res/drawable-mdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-mdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-tvdpi/display_info.png b/hostsidetests/theme/app/res/drawable-tvdpi/display_info.png
similarity index 100%
rename from hostsidetests/holo/app/res/drawable-tvdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-tvdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-xhdpi/display_info.png b/hostsidetests/theme/app/res/drawable-xhdpi/display_info.png
similarity index 100%
rename from hostsidetests/holo/app/res/drawable-xhdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-xhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-xxhdpi/display_info.png b/hostsidetests/theme/app/res/drawable-xxhdpi/display_info.png
similarity index 100%
rename from hostsidetests/holo/app/res/drawable-xxhdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-xxhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/drawable-xxxhdpi/display_info.png b/hostsidetests/theme/app/res/drawable-xxxhdpi/display_info.png
similarity index 100%
rename from hostsidetests/holo/app/res/drawable-xxxhdpi/display_info.png
rename to hostsidetests/theme/app/res/drawable-xxxhdpi/display_info.png
Binary files differ
diff --git a/hostsidetests/holo/app/res/layout/button.xml b/hostsidetests/theme/app/res/layout/button.xml
similarity index 100%
rename from hostsidetests/holo/app/res/layout/button.xml
rename to hostsidetests/theme/app/res/layout/button.xml
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/holo/app/res/layout/display_info.xml b/hostsidetests/theme/app/res/layout/display_info.xml
similarity index 100%
rename from hostsidetests/holo/app/res/layout/display_info.xml
rename to hostsidetests/theme/app/res/layout/display_info.xml
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..12504c1
--- /dev/null
+++ b/hostsidetests/theme/app/src/android/theme/app/DisplayInfoActivity.java
@@ -0,0 +1,81 @@
+/*
+ * 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_400:
+                return "400dpi";
+
+            case DisplayMetrics.DENSITY_XXHIGH:
+                return "xxhdpi";
+
+            case DisplayMetrics.DENSITY_XXXHIGH:
+                return "xxxhdpi";
+
+            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..3939979
--- /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") + ":" + mName);
+            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/assets/18/400dpi.zip b/hostsidetests/theme/assets/18/400dpi.zip
new file mode 100644
index 0000000..21d2ea8
--- /dev/null
+++ b/hostsidetests/theme/assets/18/400dpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/18/hdpi.zip b/hostsidetests/theme/assets/18/hdpi.zip
new file mode 100644
index 0000000..3f7fb6d
--- /dev/null
+++ b/hostsidetests/theme/assets/18/hdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/18/ldpi.zip b/hostsidetests/theme/assets/18/ldpi.zip
new file mode 100644
index 0000000..957a6e3
--- /dev/null
+++ b/hostsidetests/theme/assets/18/ldpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/18/mdpi.zip b/hostsidetests/theme/assets/18/mdpi.zip
new file mode 100644
index 0000000..833a8d5
--- /dev/null
+++ b/hostsidetests/theme/assets/18/mdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/18/tvdpi.zip b/hostsidetests/theme/assets/18/tvdpi.zip
new file mode 100644
index 0000000..017f059
--- /dev/null
+++ b/hostsidetests/theme/assets/18/tvdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/18/xhdpi.zip b/hostsidetests/theme/assets/18/xhdpi.zip
new file mode 100644
index 0000000..4bcdcae
--- /dev/null
+++ b/hostsidetests/theme/assets/18/xhdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/19/400dpi.zip b/hostsidetests/theme/assets/19/400dpi.zip
new file mode 100644
index 0000000..2f9edd2
--- /dev/null
+++ b/hostsidetests/theme/assets/19/400dpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/19/hdpi.zip b/hostsidetests/theme/assets/19/hdpi.zip
new file mode 100644
index 0000000..45f07f4
--- /dev/null
+++ b/hostsidetests/theme/assets/19/hdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/19/ldpi.zip b/hostsidetests/theme/assets/19/ldpi.zip
new file mode 100644
index 0000000..89d6544
--- /dev/null
+++ b/hostsidetests/theme/assets/19/ldpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/19/mdpi.zip b/hostsidetests/theme/assets/19/mdpi.zip
new file mode 100644
index 0000000..6559c4a
--- /dev/null
+++ b/hostsidetests/theme/assets/19/mdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/19/tvdpi.zip b/hostsidetests/theme/assets/19/tvdpi.zip
new file mode 100644
index 0000000..6496a1f
--- /dev/null
+++ b/hostsidetests/theme/assets/19/tvdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/19/xhdpi.zip b/hostsidetests/theme/assets/19/xhdpi.zip
new file mode 100644
index 0000000..515dcf2
--- /dev/null
+++ b/hostsidetests/theme/assets/19/xhdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/19/xxhdpi.zip b/hostsidetests/theme/assets/19/xxhdpi.zip
new file mode 100644
index 0000000..c9c7a59
--- /dev/null
+++ b/hostsidetests/theme/assets/19/xxhdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/21/400dpi.zip b/hostsidetests/theme/assets/21/400dpi.zip
new file mode 100644
index 0000000..17efbbe
--- /dev/null
+++ b/hostsidetests/theme/assets/21/400dpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/21/hdpi.zip b/hostsidetests/theme/assets/21/hdpi.zip
new file mode 100644
index 0000000..2035d17
--- /dev/null
+++ b/hostsidetests/theme/assets/21/hdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/21/ldpi.zip b/hostsidetests/theme/assets/21/ldpi.zip
new file mode 100644
index 0000000..059bf33
--- /dev/null
+++ b/hostsidetests/theme/assets/21/ldpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/21/mdpi.zip b/hostsidetests/theme/assets/21/mdpi.zip
new file mode 100644
index 0000000..0fb0778
--- /dev/null
+++ b/hostsidetests/theme/assets/21/mdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/21/tvdpi.zip b/hostsidetests/theme/assets/21/tvdpi.zip
new file mode 100644
index 0000000..eb6fd8c
--- /dev/null
+++ b/hostsidetests/theme/assets/21/tvdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/21/xhdpi.zip b/hostsidetests/theme/assets/21/xhdpi.zip
new file mode 100644
index 0000000..c4b4d0e
--- /dev/null
+++ b/hostsidetests/theme/assets/21/xhdpi.zip
Binary files differ
diff --git a/hostsidetests/theme/assets/21/xxhdpi.zip b/hostsidetests/theme/assets/21/xxhdpi.zip
new file mode 100644
index 0000000..62983df
--- /dev/null
+++ b/hostsidetests/theme/assets/21/xxhdpi.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..19c37c0
--- /dev/null
+++ b/hostsidetests/theme/src/android/theme/cts/ComparisonTask.java
@@ -0,0 +1,168 @@
+/*
+ * 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");
+
+            final String remoteGenerated = String.format(mStoragePath, mName);
+            if (!mDevice.doesFileExist(remoteGenerated)) {
+                Log.logAndDisplay(LogLevel.ERROR, TAG, "File " + remoteGenerated + " have not been saved on device");
+                return false;
+            }
+            mDevice.pullFile(remoteGenerated, 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, String.format(mStoragePath, mName));
+            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..c88fb44
--- /dev/null
+++ b/hostsidetests/theme/src/android/theme/cts/ThemeHostTest.java
@@ -0,0 +1,368 @@
+/*
+ * 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 com.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 HARDWARE_TYPE_CMD = "dumpsys | grep android.hardware.type";
+
+    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 (checkHardwareTypeSkipTest(
+                mDevice.executeShellCommand(HARDWARE_TYPE_CMD).trim())) {
+            Log.logAndDisplay(LogLevel.INFO, TAG, "Skipped HoloThemes test for watch and TV");
+            return;
+        }
+
+
+        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, name)) {
+                    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, String imageName) 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[] lineSplit = line.split(":");
+                    final String s = lineSplit[1].trim();
+                    final String imageNameGenerated = lineSplit[2].trim();
+                    if (s.equals("OKAY") && imageNameGenerated.equals(imageName)) {
+                        success = true;
+                        waiting = false;
+                    } else if (s.equals("ERROR") && imageNameGenerated.equals(imageName)) {
+                        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;
+        }
+    }
+
+    private static boolean checkHardwareTypeSkipTest(String hardwareTypeString) {
+        if (hardwareTypeString.contains("android.hardware.type.watch")) {
+            return true;
+        }
+        if (hardwareTypeString.contains("android.hardware.type.television")) {
+            return true;
+        }
+        return false;
+    }
+}
diff --git a/tests/tests/holo/Android.mk b/tests/tests/holo/Android.mk
deleted file mode 100644
index e21b7bd..0000000
--- a/tests/tests/holo/Android.mk
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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
-# and when built explicitly put it in the data partition
-LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
-
-LOCAL_STATIC_JAVA_LIBRARIES := ctstestrunner
-
-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 := 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 34f8e72..0000000
--- a/tests/tests/holo/AndroidManifest.xml
+++ /dev/null
@@ -1,69 +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.support.test.runner.AndroidJUnitRunner"
-            android:targetPackage="com.android.cts.holo"
-            android:label="CTS tests for the Holo theme" >
-        <meta-data android:name="listener"
-            android:value="com.android.cts.runner.CtsTestRunListener" />
-    </instrumentation>
-
-</manifest>
diff --git a/tests/tests/holo/res/drawable-400dpi/display_info.png b/tests/tests/holo/res/drawable-400dpi/display_info.png
deleted file mode 100644
index e5f1f96..0000000
--- a/tests/tests/holo/res/drawable-400dpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_button.png b/tests/tests/holo/res/drawable-400dpi/holo_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_light_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_light_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_light_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_light_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_light_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_button.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-400dpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-hdpi/display_info.png b/tests/tests/holo/res/drawable-hdpi/display_info.png
deleted file mode 100644
index 10b3950..0000000
--- a/tests/tests/holo/res/drawable-hdpi/display_info.png
+++ /dev/null
Binary files differ
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 8f6c7f0..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 c1c07a0..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 4eeb624..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 ad87d60..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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 ae579d7..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 69df678..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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 ae579d7..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 69df678..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 8f6c7f0..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 c1c07a0..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 4eeb624..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 ad87d60..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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 4eeb624..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 ad87d60..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 8f6c7f0..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 c1c07a0..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 4eeb624..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 ad87d60..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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 4eeb624..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 ad87d60..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 120ef2d..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 f1d2f00..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 3196800..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 06373c5..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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 3196800..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 06373c5..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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 3196800..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 06373c5..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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 9cdec5c..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 4bf52bb..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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 9cdec5c..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 4bf52bb..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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 3196800..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 06373c5..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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 3196800..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 06373c5..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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 3196800..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 06373c5..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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 3196800..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 06373c5..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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 3196800..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 06373c5..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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 3cc4f13..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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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 3cc4f13..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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 78802fc..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 8f6c7f0..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 c1c07a0..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 4eeb624..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 ad87d60..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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 47c4eb5..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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 8f6c7f0..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 c1c07a0..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 47c4eb5..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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 8f6c7f0..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 c1c07a0..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 4eeb624..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 ad87d60..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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 4eeb624..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 ad87d60..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 bb66614..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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-400dpi/display_info.png b/tests/tests/holo/res/drawable-land-400dpi/display_info.png
deleted file mode 100644
index 1b74e01..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view.png
deleted file mode 100644
index 938038d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view_feb.png
deleted file mode 100644
index de81b63..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 938038d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index de81b63..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 938038d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index de81b63..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 938038d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index de81b63..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view.png
deleted file mode 100644
index 4f334aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 85d7619..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 4f334aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 85d7619..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 4f334aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 85d7619..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 4f334aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 85d7619..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 4f334aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 85d7619..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 938038d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index de81b63..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-400dpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-400dpi/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_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view.png
deleted file mode 100644
index 99d030c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 14dffa2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 99d030c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 14dffa2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 99d030c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 14dffa2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_switch_checked.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 4cbeccf..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index ae579d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 69df678..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index ae579d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 69df678..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.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 4cbeccf..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_switch_checked.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 4cbeccf..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_switch_checked.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 4cbeccf..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 99d030c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 14dffa2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index ae579d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 69df678..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.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 4cbeccf..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_switch_checked.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 4cbeccf..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 9cdec5c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 4bf52bb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_switch_checked.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 524fe9b..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_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view.png
deleted file mode 100644
index c12dbb8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index bfd03e0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index c12dbb8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index bfd03e0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_switch_checked.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 524fe9b..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_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index c12dbb8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index bfd03e0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index c12dbb8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index bfd03e0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_switch_checked.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 524fe9b..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 9cdec5c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 4bf52bb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 9cdec5c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 4bf52bb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.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 524fe9b..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_switch_checked.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 524fe9b..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_switch_checked.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 524fe9b..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index c12dbb8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index bfd03e0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 9cdec5c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 4bf52bb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.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 524fe9b..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_switch_checked.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 524fe9b..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 9cdec5c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 4bf52bb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 9cdec5c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 4bf52bb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.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 524fe9b..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_switch_checked.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 524fe9b..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 9cdec5c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 4bf52bb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_switch_checked.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 524fe9b..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_panel_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_switch_checked.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 524fe9b..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_light_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index ae579d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 69df678..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index ae579d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 69df678..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_switch_checked.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 4cbeccf..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_switch_checked.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 4cbeccf..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view.png
deleted file mode 100644
index ae579d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 69df678..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_switch_checked.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 4cbeccf..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_panel_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_switch_checked.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 4cbeccf..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_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 99d030c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 14dffa2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index ae579d7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 69df678..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_switch_checked.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 4cbeccf..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_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_switch_checked.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 4cbeccf..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-hdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-land-hdpi/holo_wallpaper_toggle_button_checked.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_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view.png
deleted file mode 100644
index 53ee68c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view_feb.png
deleted file mode 100644
index 997b265..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 53ee68c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 997b265..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 53ee68c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 997b265..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_switch_checked.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 213dfbe..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 16be64f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8ff351e..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 16be64f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 8ff351e..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.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 213dfbe..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_switch_checked.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 213dfbe..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_switch_checked.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 213dfbe..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 53ee68c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 997b265..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 16be64f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8ff351e..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.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 213dfbe..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_switch_checked.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 213dfbe..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index c056720..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index c73a6bb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_switch_checked.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 fa09688..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_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view.png
deleted file mode 100644
index 77981c6..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index b6a3662..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 77981c6..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index b6a3662..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_switch_checked.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 fa09688..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_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 77981c6..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index b6a3662..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 77981c6..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index b6a3662..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_switch_checked.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 fa09688..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index c056720..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c73a6bb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index c056720..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index c73a6bb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.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 fa09688..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_switch_checked.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 fa09688..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_switch_checked.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 fa09688..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 77981c6..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index b6a3662..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index c056720..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c73a6bb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.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 fa09688..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_switch_checked.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 fa09688..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index c056720..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c73a6bb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index c056720..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index c73a6bb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.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 fa09688..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_switch_checked.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 fa09688..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index c056720..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index c73a6bb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_switch_checked.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 fa09688..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_panel_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_switch_checked.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 fa09688..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_light_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 16be64f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 8ff351e..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 16be64f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 8ff351e..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_switch_checked.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 213dfbe..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_switch_checked.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 213dfbe..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view.png
deleted file mode 100644
index 16be64f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 8ff351e..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_switch_checked.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 213dfbe..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_panel_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_switch_checked.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 213dfbe..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_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 53ee68c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 997b265..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 16be64f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 8ff351e..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_switch_checked.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 213dfbe..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_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_switch_checked.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 213dfbe..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-ldpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-land-ldpi/holo_wallpaper_toggle_button_checked.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_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view.png
deleted file mode 100644
index 0f87446..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 3f4d13b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 0f87446..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 3f4d13b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 0f87446..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 3f4d13b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_switch_checked.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 6b6cec0..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 3683bc6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0ba1245..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 3683bc6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 0ba1245..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.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 6b6cec0..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_switch_checked.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 6b6cec0..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_switch_checked.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 6b6cec0..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 0f87446..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 3f4d13b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 3683bc6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0ba1245..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.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 6b6cec0..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_switch_checked.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 6b6cec0..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 9ec2e10..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 0da084b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_switch_checked.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 754b5df..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_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view.png
deleted file mode 100644
index c9dd22e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 22dfeca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index c9dd22e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 22dfeca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_switch_checked.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 754b5df..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_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index c9dd22e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 22dfeca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index c9dd22e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 22dfeca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_switch_checked.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 754b5df..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 9ec2e10..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0da084b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 9ec2e10..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 0da084b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.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 754b5df..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_switch_checked.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 754b5df..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_switch_checked.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 754b5df..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index c9dd22e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 22dfeca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 9ec2e10..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0da084b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.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 754b5df..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_switch_checked.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 754b5df..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 9ec2e10..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0da084b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 9ec2e10..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 0da084b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.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 754b5df..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_switch_checked.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 754b5df..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 9ec2e10..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 0da084b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_switch_checked.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 754b5df..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_panel_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_switch_checked.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 754b5df..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_light_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 3683bc6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0ba1245..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 3683bc6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 0ba1245..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_switch_checked.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 6b6cec0..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_switch_checked.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 6b6cec0..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 3683bc6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 0ba1245..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_switch_checked.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 6b6cec0..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_panel_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_switch_checked.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 6b6cec0..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_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 0f87446..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 3f4d13b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 3683bc6..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 0ba1245..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_switch_checked.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 6b6cec0..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_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_switch_checked.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 6b6cec0..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-mdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-land-mdpi/holo_wallpaper_toggle_button_checked.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_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view.png
deleted file mode 100644
index 1491b42..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view_feb.png
deleted file mode 100644
index dd78ae3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 0dbbb98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 6102fc8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 0dbbb98..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6102fc8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_switch_checked.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 6f9209f..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 1491b42..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index dd78ae3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 1491b42..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index dd78ae3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.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 6f9209f..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_switch_checked.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 6f9209f..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_switch_checked.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 6f9209f..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 1491b42..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index dd78ae3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 1491b42..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index dd78ae3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.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 6f9209f..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_switch_checked.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 6f9209f..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_switch_checked.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 565fae2..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_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_switch_checked.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 565fae2..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_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index efd0a40..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 868a18e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index efd0a40..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 868a18e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_switch_checked.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 565fae2..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.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 565fae2..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.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 565fae2..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_switch_checked.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 565fae2..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.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 565fae2..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.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 565fae2..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 3c61854..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index b00bbf9..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.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 565fae2..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_switch_checked.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 565fae2..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index e2e381b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 6c2b1f3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_switch_checked.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 565fae2..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_panel_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_switch_checked.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 565fae2..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_light_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 1491b42..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index dd78ae3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index aa13d2c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 2a9d640..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.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 6f9209f..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_switch_checked.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 6f9209f..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view.png
deleted file mode 100644
index aa13d2c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 2a9d640..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_switch_checked.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 6f9209f..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_panel_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_switch_checked.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 6f9209f..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_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 1491b42..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index dd78ae3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 1491b42..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index dd78ae3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.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 6f9209f..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_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_switch_checked.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 6f9209f..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-tvdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-land-tvdpi/holo_wallpaper_toggle_button_checked.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_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view.png
deleted file mode 100644
index db7977a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 6aea18d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index db7977a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 6aea18d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index db7977a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6aea18d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_switch_checked.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 2d6a49b..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index ef5986e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7d2836a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index ef5986e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 7d2836a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.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 2d6a49b..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_switch_checked.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 2d6a49b..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_switch_checked.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 2d6a49b..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index db7977a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 6aea18d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index ef5986e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7d2836a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.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 2d6a49b..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_switch_checked.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 2d6a49b..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 87327eb..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 31282d2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_switch_checked.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 d1cc783..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_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view.png
deleted file mode 100644
index 36328a0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 62366db..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 36328a0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 62366db..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_switch_checked.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 d1cc783..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_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 36328a0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 62366db..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 36328a0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 62366db..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_switch_checked.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 d1cc783..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 87327eb..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 31282d2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 87327eb..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 31282d2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.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 d1cc783..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_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.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 d1cc783..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_switch_checked.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 d1cc783..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_dialog_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 36328a0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 62366db..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 87327eb..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 31282d2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.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 d1cc783..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.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 d1cc783..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_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 87327eb..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 31282d2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 87327eb..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 31282d2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.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 d1cc783..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_switch_checked.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 d1cc783..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 87327eb..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 31282d2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_switch_checked.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 d1cc783..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_panel_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_switch_checked.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 d1cc783..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_light_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index ef5986e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7d2836a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index ef5986e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 7d2836a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.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 2d6a49b..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_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_switch_checked.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 2d6a49b..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_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index ef5986e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 7d2836a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_switch_checked.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 2d6a49b..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_panel_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_switch_checked.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 2d6a49b..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_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index db7977a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 6aea18d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index ef5986e..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 7d2836a..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.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 2d6a49b..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_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.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_searchview_query.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_switch_checked.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 2d6a49b..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-land-xhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-land-xhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/display_info.png b/tests/tests/holo/res/drawable-land-xxhdpi/display_info.png
deleted file mode 100644
index c6f7fd8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 80fb870..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index f631dad..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index eb0fc5e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index c2daa9d..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/display_info.png b/tests/tests/holo/res/drawable-land-xxxhdpi/display_info.png
deleted file mode 100644
index 7ad9b52..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view.png
deleted file mode 100644
index a762092..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 2b969d6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index a762092..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 2b969d6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index a762092..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 2b969d6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index e0c64dd..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 19e4729..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index e0c64dd..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 19e4729..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index a762092..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 2b969d6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index e0c64dd..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 19e4729..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index b2f1b38..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index c5567e0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view.png
deleted file mode 100644
index c905697..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 6729034..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index c905697..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 6729034..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index c905697..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 6729034..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index c905697..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6729034..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index b2f1b38..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c5567e0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index b2f1b38..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index c5567e0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index c905697..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 6729034..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index b2f1b38..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c5567e0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index b2f1b38..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index c5567e0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index b2f1b38..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index c5567e0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index b2f1b38..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index c5567e0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview.png
deleted file mode 100644
index d9617e2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_tabhost.png
deleted file mode 100644
index 4ca2bd7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index e0c64dd..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 19e4729..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index e0c64dd..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 19e4729..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index e0c64dd..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 19e4729..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index a762092..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 2b969d6..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index e0c64dd..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 19e4729..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index c87a3b7..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 3749fc1..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-ldpi/display_info.png b/tests/tests/holo/res/drawable-ldpi/display_info.png
deleted file mode 100644
index af1fda5..0000000
--- a/tests/tests/holo/res/drawable-ldpi/display_info.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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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 16be64f..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 8ff351e..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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 16be64f..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 8ff351e..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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 c056720..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 c73a6bb..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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 c056720..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 c73a6bb..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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 2fddda5..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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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 a34a417..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 6abd851..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 91bf8cb..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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 23d8c0d..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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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 07df0bf..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 8c748be..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 4b1f5a5..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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/display_info.png b/tests/tests/holo/res/drawable-mdpi/display_info.png
deleted file mode 100644
index 4378b14..0000000
--- a/tests/tests/holo/res/drawable-mdpi/display_info.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 e331f1f..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 6645b40..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 a020201..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 6ec7b61..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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 a020201..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 6ec7b61..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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 a020201..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 6ec7b61..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e331f1f..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 6645b40..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 6ba961c..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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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 6ba961c..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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e331f1f..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 6645b40..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 a020201..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 6ec7b61..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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 6ba961c..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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e214cee..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 e5f2ba6..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 da8c25b..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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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 2bcd324..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 1826249..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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 2bcd324..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 1826249..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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 2bcd324..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 1826249..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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 2bcd324..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 1826249..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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 da8c25b..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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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 da8c25b..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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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 2bcd324..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 1826249..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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 da8c25b..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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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 da8c25b..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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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 da8c25b..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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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 da8c25b..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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 f4fd415..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e331f1f..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 6645b40..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 6ba961c..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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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 6ba961c..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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e331f1f..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 6645b40..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 6ba961c..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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e331f1f..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 6645b40..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 a020201..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 6ec7b61..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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 6ba961c..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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 8de9698..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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-400dpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/display_info.png
deleted file mode 100644
index d23bbc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-400dpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-400dpi/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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_minwidth_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_inputmethod_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_darkactionbar_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_minwidth_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_noactionbar_fullscreen_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 120ef2d..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 f1d2f00..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_light_panel_calendar_view.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 283759d..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 46158a7..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 4ad45cd..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 f1f332e..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 d411647..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 ddeb73f..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 f9d2867..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 38678ea..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 af3bfa9..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 cfbdd9c..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 bc9edd3..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 7c3f1dd..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 b12dcb3..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 c1e7e6f..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 6cf34aa..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 25fe82d..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 c3ce216..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 768f9d7..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 bfbe5cb..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 3fdcc51..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 aba4738..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 1aee387..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 5251995..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_noactionbar_fullscreen_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_panel_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 8f6c7f0..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 c1c07a0..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.png b/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-hdpi/holo_wallpaper_notitlebar_calendar_view.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 7971e45..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 57efda2..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 7cc4e09..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 27d1830..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 214f78a..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 014897e..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 802edcb..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 b0ba8b0..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 80dc2a6..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 cd1bdcd..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 e7d201d..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 9ed22c7..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 52d11a0..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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 872251d..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 e5e70a8..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 49ee8cf..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 4a13324..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 93c2d91..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 d2d6022..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 c40708e..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 b611427..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 9887fde..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 e56be1f..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 d3091f2..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 74dc880..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 d9c4985..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 16dd7a4..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 a61e41f..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 a890104..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 764363a..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 aaf273a..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 0c02047..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 d48f714..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-400dpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/display_info.png
deleted file mode 100644
index 4f187dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview.png
deleted file mode 100644
index 4581f51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_tabhost.png
deleted file mode 100644
index 04a04b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview.png
deleted file mode 100644
index ad3ab25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index c340bf1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-400dpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-400dpi/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-hdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button.png
deleted file mode 100644
index 120ef2d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index f1d2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 3cc4f13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 283759d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 46158a7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index a3cee2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 4ad45cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4356dd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b7cbdbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 37d0d30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index c2edee4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button.png
deleted file mode 100644
index f1f332e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index d411647..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index ddeb73f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index f9d2867..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 38678ea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index af3bfa9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index cfbdd9c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index bc9edd3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 7c3f1dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index b12dcb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview.png
deleted file mode 100644
index 12c8e8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query.png
deleted file mode 100644
index c1e7e6f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 6cf34aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_0.png
deleted file mode 100644
index 1c34052..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 8668f5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_spinner.png
deleted file mode 100644
index 25fe82d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch.png
deleted file mode 100644
index c3ce216..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch_checked.png
deleted file mode 100644
index 768f9d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_tabhost.png
deleted file mode 100644
index bfbe5cb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_textview.png
deleted file mode 100644
index 3fdcc51..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_timepicker.png
deleted file mode 100644
index aba4738..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button.png
deleted file mode 100644
index 1aee387..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 5251995..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8f6c7f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index c1c07a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 47c4eb5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 7971e45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 57efda2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index ba0162d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 7cc4e09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 27d1830..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 214f78a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 014897e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 802edcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index b0ba8b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 80dc2a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index cd1bdcd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index e7d201d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 9ed22c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 52d11a0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 369d7b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 41e958c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index cff0e83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 45a2cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 3877915..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 0fd63d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1a270f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 872251d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index e5e70a8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 49ee8cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 4a13324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 93c2d91..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index d2d6022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index c40708e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index b611427..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 9887fde..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index e56be1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 8a89a0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index d3091f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 74dc880..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index b35f83c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 0873321..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 494147b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index d9c4985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 16dd7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index a61e41f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index a890104..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 764363a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index aaf273a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 0c02047..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index d48f714..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-hdpi/holo_wallpaper_toggle_button_checked.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-ldpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button.png
deleted file mode 100644
index 0a39b42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index aa9a944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 5e7cb31..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 73df785..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index a7c2f00..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_chronometer.png
deleted file mode 100644
index c2a8438..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_edittext.png
deleted file mode 100644
index c65471f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index c9914b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 240efaa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 58623c1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button.png
deleted file mode 100644
index cd3d665..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button_checked.png
deleted file mode 100644
index a991296..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index e733888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index bda6c44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0.png
deleted file mode 100644
index fadcafc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index a0f86df..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 1303bff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 83568e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5.png
deleted file mode 100644
index bbb2752..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index c194564..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview.png
deleted file mode 100644
index 9524996..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query.png
deleted file mode 100644
index 228a171..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 0ed1e3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_0.png
deleted file mode 100644
index f758a26..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_100.png
deleted file mode 100644
index fdc8fa1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_50.png
deleted file mode 100644
index d19d3c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_spinner.png
deleted file mode 100644
index 352cf99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch.png
deleted file mode 100644
index 0b3bfbd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch_checked.png
deleted file mode 100644
index a31eb96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_tabhost.png
deleted file mode 100644
index 5de1403..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_textview.png
deleted file mode 100644
index 95ffc3d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_timepicker.png
deleted file mode 100644
index dabec38..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button.png
deleted file mode 100644
index 2e2f91a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index d207e96..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index b5df6e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 238e5a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index bcf6ae2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 0dcebcb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 2bf815f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 3ba89f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index d385925..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 7e7957d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 5bda546..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index be9384b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 6b1d2da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index a0eb467..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index ac66b3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 148d887..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index a7b3a43..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 734ab70..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 07a56b3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 06fec8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index a02768d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index af1e768..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index a7399ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index fe29e1d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 28c0a40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 0030f98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 33b190c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 9db92b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 50e7a34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index eef73c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index 2780137..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 8adee44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4eadba8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 5642613..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 133c375..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview.png
deleted file mode 100644
index d1bb1a5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 6326c78..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 97db02b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 2cddf44..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index f30829c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 38f68c4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_spinner.png
deleted file mode 100644
index cee3fe9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch.png
deleted file mode 100644
index 726ca27..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 4b25524..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 3632d1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_textview.png
deleted file mode 100644
index 8b89174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 3c22b8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 4dda9d9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 2c5a42f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-ldpi/holo_wallpaper_toggle_button_checked.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-mdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button.png
deleted file mode 100644
index e214cee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index e5f2ba6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 7a62357..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index eae8da7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index 17fdb74..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 0c1041b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 3e9e9ca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 47c6e79..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index fb86936..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 7fd1e0a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button.png
deleted file mode 100644
index 3b7524b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 9a935b4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index bdf9513..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 4f49944..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index da469f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 2c2628c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 98aa3ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 71eeb64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 718f20a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 18170ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview.png
deleted file mode 100644
index 5a30758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query.png
deleted file mode 100644
index d86e402..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 8879712..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_0.png
deleted file mode 100644
index 15c004c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_50.png
deleted file mode 100644
index bd9518b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_spinner.png
deleted file mode 100644
index d7cc92e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch.png
deleted file mode 100644
index fd03756..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch_checked.png
deleted file mode 100644
index 997f865..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_tabhost.png
deleted file mode 100644
index 90972e9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_textview.png
deleted file mode 100644
index b1278e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_timepicker.png
deleted file mode 100644
index c8a1b49..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button.png
deleted file mode 100644
index a9da98d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index da47a75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index e331f1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 6645b40..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index a8bc8b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 77f5847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index a52e05b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 4d6797e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 685089c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 6b9789b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index c7beb5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index a98995d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 52c8fa5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 0e364b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 9e31f16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 5a1c489..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 9e84dff..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index b2792a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 6fabb7e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index d027b03..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 5c53ebd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 80fff1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 2de6b3a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 50301a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1240e6a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index d990181..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index b356dc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 9a4c21e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index c932a41..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index e49fd30..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index e3e558c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 258b68e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4de733d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 196b634..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index c6786e1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index d4ccda7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 595813a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index efcb758..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 7163ee5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 1f898c8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index d1c57a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 10b44bb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch.png
deleted file mode 100644
index e38748c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 5a0da92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 9f4f121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_textview.png
deleted file mode 100644
index b6c7fd9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index d68dea8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 1e0cc69..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index a2c84fd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-mdpi/holo_wallpaper_toggle_button_checked.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-tvdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 92b9f86..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button.png
deleted file mode 100644
index fc85bd5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 892a57a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index d1f9e7b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index e70e430..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index eb76f46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index cc128be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_edittext.png
deleted file mode 100644
index da28bef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 641fd75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 2d1840a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index 5cf63e0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button.png
deleted file mode 100644
index a2e0c6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 7be487d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index d67e218..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index fac7bec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index ea48dc2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index b998d58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index bfcaf36..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 8caa5ed..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index c70bb56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index c14a28a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview.png
deleted file mode 100644
index 40c9572..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query.png
deleted file mode 100644
index 3e99084..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index d0d9fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_0.png
deleted file mode 100644
index ca7bcec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_50.png
deleted file mode 100644
index a126a90..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_spinner.png
deleted file mode 100644
index dfcdab2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch.png
deleted file mode 100644
index 2836a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch_checked.png
deleted file mode 100644
index d013b5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_tabhost.png
deleted file mode 100644
index 0009bfe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_textview.png
deleted file mode 100644
index 963085d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_timepicker.png
deleted file mode 100644
index 4cd814b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button.png
deleted file mode 100644
index e216904..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 37ad8f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 4da5786..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index e174e0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 9836bf0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index f853e3f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 30fd872..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 5de7ea3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index e268c1e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 39c3765..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index a16db16..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 5ff0c2f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 1780c48..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index d5d124b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 963e74f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index b3ca9f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index eb6e985..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index bea305b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index b9c74da..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index a5ca94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index c12eb25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index bd06021..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7b97558..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 7482a47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index e454f60..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 7dcf8f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 25fe3dd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index fdffb54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index af64c01..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 3d9b801..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index caf89b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 4836514..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index f2cf574..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 0a1a74d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 5313e71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index b389e1a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 795760f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index fe7451b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 41d8c13..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 6a6f906..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 41e6f5c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index be412a2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 2316f8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index a48e3ce..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 09ff374..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 6a40721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 01016e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 272b121..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 44a7dc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-tvdpi/holo_wallpaper_toggle_button_checked.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-land-xhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button.png
deleted file mode 100644
index c2006f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index c4c4cae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 5b5f6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index 617f42d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index fa1d1a3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 4c66b09..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index e24fc71..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 1464e42..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 80d9c46..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index aaa84e2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button.png
deleted file mode 100644
index b75525b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 1d43e1f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 11ea86b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index f150702..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index 2f7f54f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 27ed503..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 94f43b2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 0331d92..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 026b058..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index f0a714b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview.png
deleted file mode 100644
index 228b1fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query.png
deleted file mode 100644
index 0f86ea0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 56febfc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index f45c12e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 88b4ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_spinner.png
deleted file mode 100644
index 363dadc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch.png
deleted file mode 100644
index bc81505..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch_checked.png
deleted file mode 100644
index f4f49e7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_tabhost.png
deleted file mode 100644
index 7e44f5e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_textview.png
deleted file mode 100644
index 4c7ccd0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_timepicker.png
deleted file mode 100644
index 6653013..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 20048fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index c0beb3e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index c7c2356..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 3715774..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 6c575de..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 029a5a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 96556b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index b38da0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 1f73a73..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 9370aa8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 6ca5182..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index e98d1ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index a40262b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 3061ca2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 54b59fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 89f1198..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index f46b083..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 0945dc9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b41717..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 8bb3363..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 736ce45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 3f32757..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index b86fc68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 98344af..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 88ef977..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 6f080b9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 333092d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 8da6bcc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 33b87d6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 223177b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a26c94f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index a2e0967..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index da7cd83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 60abbb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index c841bca..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 14df18c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 1ed1cb7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index a292215..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index 04dd1a6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index b14235b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index f9eea99..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index ba426d1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 10aab75..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 307a97b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index de89d29..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index 20056f0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index 396028d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 0658fea..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 6de8940..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/display_info.png
deleted file mode 100644
index 52664fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button_pressed.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/display_info.png
deleted file mode 100644
index d992c25..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button_pressed.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-land-xxxhdpi/holo_wallpaper_toggle_button_checked.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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_minwidth_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialog_noactionbar_minwidth_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_dialogwhenlarge_noactionbar_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_inputmethod_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_darkactionbar_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_minwidth_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialog_noactionbar_minwidth_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_noactionbar_fullscreen_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 0a39b42..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 aa9a944..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 2fddda5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_light_panel_calendar_view.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 5e7cb31..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 73df785..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 c2a8438..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 240efaa..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 58623c1..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 cd3d665..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 a991296..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 e733888..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 bda6c44..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 fadcafc..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 a0f86df..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 1303bff..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 83568e0..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 bbb2752..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 c194564..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 228a171..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 0ed1e3d..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 352cf99..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 0b3bfbd..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 a31eb96..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 5de1403..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 95ffc3d..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 dabec38..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 2e2f91a..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 d207e96..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_noactionbar_fullscreen_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_panel_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 b5df6e2..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 238e5a3..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.png b/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 23d8c0d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-ldpi/holo_wallpaper_notitlebar_calendar_view.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 bcf6ae2..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 0dcebcb..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 3ba89f2..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 d385925..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 7e7957d..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 5bda546..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 be9384b..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 6b1d2da..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 a0eb467..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 ac66b3f..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 148d887..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 a7b3a43..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 734ab70..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 0030f98..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 33b190c..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 9db92b7..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 50e7a34..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 eef73c9..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 2780137..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 8adee44..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 4eadba8..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 5642613..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 133c375..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 6326c78..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 97db02b..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 cee3fe9..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 726ca27..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 4b25524..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 3632d1c..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 8b89174..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 3c22b8f..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 4dda9d9..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 2c5a42f..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_minwidth_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialog_noactionbar_minwidth_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index a020201..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_calendar_view.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 6ec7b61..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_dialogwhenlarge_noactionbar_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_inputmethod_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_darkactionbar_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_minwidth_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 2bcd324..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_calendar_view.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 1826249..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_noactionbar_fullscreen_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e214cee..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 e5f2ba6..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index da8c25b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_light_panel_calendar_view.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 7a62357..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 eae8da7..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 0c1041b..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 3b7524b..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 9a935b4..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 bdf9513..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 4f49944..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 da469f0..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 2c2628c..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 98aa3ac..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 71eeb64..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 718f20a..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 18170ed..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 d86e402..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 8879712..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 d7cc92e..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 fd03756..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 997f865..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 90972e9..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 b1278e0..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 c8a1b49..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 a9da98d..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 da47a75..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_noactionbar_fullscreen_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_panel_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 e331f1f..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 6645b40..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.png b/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 6ba961c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-mdpi/holo_wallpaper_notitlebar_calendar_view.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 a8bc8b6..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 77f5847..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 4d6797e..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 685089c..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 6b9789b..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 c7beb5c..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 a98995d..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 52c8fa5..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 0e364b2..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 9e31f16..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 5a1c489..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 9e84dff..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 b2792a3..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 d990181..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 b356dc0..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 9a4c21e..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 c932a41..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 e49fd30..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 e3e558c..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 258b68e..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 4de733d..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 196b634..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 c6786e1..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 595813a..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 efcb758..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 10b44bb..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 e38748c..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 5a0da92..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 9f4f121..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 b6c7fd9..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 d68dea8..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 1e0cc69..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 a2c84fd..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_minwidth_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialog_noactionbar_minwidth_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_dialogwhenlarge_noactionbar_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_inputmethod_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_darkactionbar_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_minwidth_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_noactionbar_fullscreen_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 98af684..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_light_panel_calendar_view.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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 0009bfe..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_noactionbar_fullscreen_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_panel_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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.png b/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index b561faf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-tvdpi/holo_wallpaper_notitlebar_calendar_view.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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 09ff374..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_calendar_view.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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_calendar_view.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 97df30c..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_minwidth_calendar_view.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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_calendar_view.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 97df30c..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialog_noactionbar_minwidth_calendar_view.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 97df30c..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_calendar_view.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 97df30c..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.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 97df30c..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_inputmethod_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_darkactionbar_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_minwidth_calendar_view.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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 216378d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_noactionbar_fullscreen_calendar_view.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 fa7d278..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 7d9cc12..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_light_panel_calendar_view.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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 7e44f5e..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_calendar_view.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 97df30c..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_noactionbar_fullscreen_calendar_view.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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_panel_calendar_view.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 97df30c..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 1d109f2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_calendar_view.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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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.png b/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index a92f31e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xhdpi/holo_wallpaper_notitlebar_calendar_view.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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 de89d29..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 20056f0..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 396028d..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 0658fea..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 6de8940..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-sw600dp-xxhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/display_info.png
deleted file mode 100644
index b212de1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index c4ba05f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 578207a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview.png
deleted file mode 100644
index f53d9a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_tabhost.png
deleted file mode 100644
index ce1aae5..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index da5c764..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 460cc2a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 5325490..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 2638a65..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/display_info.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/display_info.png
deleted file mode 100644
index ffbc97a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button_pressed.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 6150649..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 9871099..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview.png
deleted file mode 100644
index efe1e47..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_tabhost.png
deleted file mode 100644
index a85de8f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 9fb414f..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 92257a1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index cc0e7f8..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 348df8b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-sw600dp-xxxhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-tvdpi/display_info.png b/tests/tests/holo/res/drawable-tvdpi/display_info.png
deleted file mode 100644
index d9825fb..0000000
--- a/tests/tests/holo/res/drawable-tvdpi/display_info.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 4da5786..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 e174e0f..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 aa13d2c..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 2a9d640..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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 aa13d2c..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 2a9d640..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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 aa13d2c..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 2a9d640..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 4da5786..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 e174e0f..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 b561faf..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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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 b561faf..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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 4da5786..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 e174e0f..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 aa13d2c..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 2a9d640..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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 b561faf..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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 fc85bd5..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 892a57a..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 98af684..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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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 3c61854..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 b00bbf9..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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 3c61854..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 b00bbf9..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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 3c61854..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 b00bbf9..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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 3c61854..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 b00bbf9..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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 98af684..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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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 98af684..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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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 3c61854..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 b00bbf9..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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 98af684..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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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 98af684..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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 fc85bd5..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 892a57a..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 98af684..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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 fc85bd5..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 892a57a..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 98af684..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 d1f9e7b..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 e70e430..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 cc128be..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 a2e0c6b..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 7be487d..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 d67e218..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 fac7bec..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 ea48dc2..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 b998d58..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 bfcaf36..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 8caa5ed..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 c70bb56..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 c14a28a..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 3e99084..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 d0d9fc0..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 dfcdab2..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 2836a5b..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 d013b5b..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 9e2a7ef..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 963085d..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 4cd814b..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 e216904..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 37ad8f4..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 4da5786..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 e174e0f..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 b561faf..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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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 b561faf..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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 4da5786..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 e174e0f..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 b561faf..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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 4da5786..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 e174e0f..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 aa13d2c..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 2a9d640..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 4da5786..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 e174e0f..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 b561faf..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 9836bf0..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 f853e3f..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 5de7ea3..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 e268c1e..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 39c3765..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 a16db16..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 5ff0c2f..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 1780c48..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 d5d124b..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 963e74f..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 b3ca9f1..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 eb6e985..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 bea305b..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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 7dcf8f1..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 25fe3dd..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 fdffb54..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 af64c01..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 3d9b801..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 caf89b1..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 4836514..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 f2cf574..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 0a1a74d..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 5313e71..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 795760f..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 fe7451b..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 be412a2..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 2316f8b..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 a48e3ce..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 a6c26cc..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 6a40721..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 01016e8..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 272b121..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 44a7dc6..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/display_info.png b/tests/tests/holo/res/drawable-xhdpi/display_info.png
deleted file mode 100644
index 585af2f..0000000
--- a/tests/tests/holo/res/drawable-xhdpi/display_info.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 c7c2356..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 3715774..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 8c306ba..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 d8477b8..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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 8c306ba..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 d8477b8..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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 8c306ba..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 d8477b8..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c7c2356..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 3715774..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 1d109f2..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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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 1d109f2..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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c7c2356..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 3715774..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 8c306ba..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 d8477b8..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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 1d109f2..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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c2006f9..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 c4c4cae..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 7d9cc12..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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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 4a6fd2f..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 d11de12..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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 4a6fd2f..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 d11de12..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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 4a6fd2f..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 d11de12..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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 4a6fd2f..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 d11de12..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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 7d9cc12..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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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 7d9cc12..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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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 4a6fd2f..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 d11de12..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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 7d9cc12..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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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 7d9cc12..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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c2006f9..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 c4c4cae..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 7d9cc12..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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c2006f9..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 c4c4cae..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 7d9cc12..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 5b5f6fc..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 617f42d..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 4c66b09..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 b75525b..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 1d43e1f..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 11ea86b..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 f150702..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 2f7f54f..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 27ed503..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 94f43b2..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 0331d92..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 026b058..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 f0a714b..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 0f86ea0..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 56febfc..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 363dadc..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 bc81505..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 f4f49e7..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 0131a09..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 4c7ccd0..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 6653013..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 20048fe..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 c0beb3e..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 c7c2356..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 3715774..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 1d109f2..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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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 1d109f2..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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c7c2356..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 3715774..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 1d109f2..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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 c7c2356..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 3715774..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 8c306ba..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 d8477b8..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 c7c2356..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 3715774..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 1d109f2..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 6c575de..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 029a5a4..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 b38da0f..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 1f73a73..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 9370aa8..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 6ca5182..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 e98d1ec..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 a40262b..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 3061ca2..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 54b59fa..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 89f1198..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 f46b083..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 0945dc9..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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 6f080b9..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 333092d..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 8da6bcc..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 33b87d6..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 223177b..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 a26c94f..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 a2e0967..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 da7cd83..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 60abbb3..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 c841bca..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 1ed1cb7..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 a292215..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 ba426d1..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 10aab75..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 307a97b..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 a07d0c6..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 20056f0..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 396028d..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 0658fea..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 6de8940..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/drawable-xxhdpi/display_info.png b/tests/tests/holo/res/drawable-xxhdpi/display_info.png
deleted file mode 100644
index 255c28f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 66cfc1c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index b29d7ef..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 9eeea75..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index c42356a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index e0840c0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 150f253..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button.png
deleted file mode 100644
index e1ab413..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 972deb3..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index a794685..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index 42c6b85..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index ccb263e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index c28064c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index 7c2e552..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index 4a8f978..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index b8f3128..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 93cf342..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index cfee744..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button.png
deleted file mode 100644
index df53721..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index bff175e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 25466cd..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 63dab83..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index d33f643..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index 3e0ebe0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 733b7ec..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4b8611c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 5cb08f9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index 50155c7..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview.png
deleted file mode 100644
index f51fe27..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query.png
deleted file mode 100644
index d3f64b0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index e085750..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index bb24e4d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index f9b0c0f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_spinner.png
deleted file mode 100644
index 0563e58..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch.png
deleted file mode 100644
index dfe9d0b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 0a917bf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_tabhost.png
deleted file mode 100644
index fa8d49d..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_textview.png
deleted file mode 100644
index 601c523..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_timepicker.png
deleted file mode 100644
index 571e196..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 7b4093a..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index e324145..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index af0fcd6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index 0baf7ba..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 8d07174..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 7c5fd45..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 7edeab5..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index 98cbd99..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 8f9a832..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index 1254351..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 0306efa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index 861a88b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index 2980ae0..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index b7b5585..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 1052ec9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index 5ae21be..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 8a58e2e..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index e48d877..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index c10e14c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 6c8ac68..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 37e12b8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 4b8d0c2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index e12aa54..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index d723310..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index 14379f4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 7775d34..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index c8ae5aa..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index bf06549..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index 4ec280c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 21e98a4..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 4957a5b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 545ddeb..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index a4dc230..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a152910..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 39e7c2b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index c0c1c20..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index 624efc6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index fbf55cf..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 19b3484..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index 9133002..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index 122c1fe..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index c37bf56..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index fd40bb9..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index 663f6e6..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 4bfa4e8..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index b3eaa6c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index b617b6b..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index b7de37f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index bb71cb2..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index eefde4f..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 858cb4c..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 584c388..0000000
--- a/tests/tests/holo/res/drawable-xxhdpi/holo_wallpaper_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/display_info.png b/tests/tests/holo/res/drawable-xxxhdpi/display_info.png
deleted file mode 100644
index 095382c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/display_info.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view.png
deleted file mode 100644
index 652a535..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view_feb.png
deleted file mode 100644
index 0af39ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view.png
deleted file mode 100644
index 652a535..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view_feb.png
deleted file mode 100644
index 0af39ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view.png
deleted file mode 100644
index 652a535..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index 0af39ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index 652a535..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index 0af39ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_inputmethod_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view.png
deleted file mode 100644
index d372de6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view_feb.png
deleted file mode 100644
index ff7036f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view.png
deleted file mode 100644
index d372de6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
deleted file mode 100644
index ff7036f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_darkactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view.png
deleted file mode 100644
index d372de6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view_feb.png
deleted file mode 100644
index ff7036f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
deleted file mode 100644
index d372de6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
deleted file mode 100644
index ff7036f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_minwidth_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialog_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
deleted file mode 100644
index d372de6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
deleted file mode 100644
index ff7036f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_dialogwhenlarge_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button.png
deleted file mode 100644
index 656d8ee..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button_pressed.png
deleted file mode 100644
index 72bfd64..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view.png
deleted file mode 100644
index 33c1797..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view_feb.png
deleted file mode 100644
index b598847..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox.png
deleted file mode 100644
index a7f68b6..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox_checked.png
deleted file mode 100644
index 80e46be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_chronometer.png
deleted file mode 100644
index df5472d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_edittext.png
deleted file mode 100644
index c3922c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_0.png
deleted file mode 100644
index 9313020..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_100.png
deleted file mode 100644
index 485cc98..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_50.png
deleted file mode 100644
index fd0388f..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button.png
deleted file mode 100644
index 2ae1570..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button_checked.png
deleted file mode 100644
index 59da2ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_horizontal.png
deleted file mode 100644
index 256f593..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_vertical.png
deleted file mode 100644
index 60ef54c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0.png
deleted file mode 100644
index dd0780a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0_pressed.png
deleted file mode 100644
index a097518..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5.png
deleted file mode 100644
index 9004c04..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
deleted file mode 100644
index b62cc20..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5.png
deleted file mode 100644
index 9488918..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5_pressed.png
deleted file mode 100644
index f6dce8b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview.png
deleted file mode 100644
index b457f33..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query.png
deleted file mode 100644
index aec055a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query_hint.png
deleted file mode 100644
index 19ef7fb..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_0.png
deleted file mode 100644
index eaf9ecf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_50.png
deleted file mode 100644
index 79a5111..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_spinner.png
deleted file mode 100644
index b0ecb4b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch.png
deleted file mode 100644
index 10814b7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch_checked.png
deleted file mode 100644
index 4f2f234..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_tabhost.png
deleted file mode 100644
index d6002cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_textview.png
deleted file mode 100644
index 8dcf306..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_timepicker.png
deleted file mode 100644
index 1ccb174..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button.png
deleted file mode 100644
index 5228006..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button_checked.png
deleted file mode 100644
index 9d6acae..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_light_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_fullscreen_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_noactionbar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_panel_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view.png
deleted file mode 100644
index 652a535..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view_feb.png
deleted file mode 100644
index 0af39ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button.png
deleted file mode 100644
index 9ad55ef..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
deleted file mode 100644
index 81306f1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_button_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
deleted file mode 100644
index 1308014..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
deleted file mode 100644
index d074d02..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_calendar_view_feb.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
deleted file mode 100644
index 53747fa..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
deleted file mode 100644
index d6d40d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_checkbox_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
deleted file mode 100644
index 8760e6c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_chronometer.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
deleted file mode 100644
index f32f0ab..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_bright.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
deleted file mode 100644
index c3fdb3b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
deleted file mode 100644
index 55db9cf..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_blue_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
deleted file mode 100644
index 11f702d..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
deleted file mode 100644
index aa20d88..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_green_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
deleted file mode 100644
index 2201a9a..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
deleted file mode 100644
index 36e9700..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_orange_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
deleted file mode 100644
index 3aa65ad..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_purple.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
deleted file mode 100644
index 4efc022..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_dark.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
deleted file mode 100644
index 843e4f8..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_color_red_light.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_edittext.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
deleted file mode 100644
index 6ef4633..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_edittext.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_notitlebar_toggle_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar.png
deleted file mode 100644
index 245ddd2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
deleted file mode 100644
index 965dbd1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
deleted file mode 100644
index a166fda..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
deleted file mode 100644
index 8bd64d7..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_horizontal_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_large.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_large.png
deleted file mode 100644
index 5985c81..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_large.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_small.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_small.png
deleted file mode 100644
index 1c73888..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_progressbar_small.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button.png
deleted file mode 100644
index fbdd345..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button_checked.png
deleted file mode 100644
index 1b6c4bc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radio_button_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
deleted file mode 100644
index 06e2e82..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_horizontal.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_vertical.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
deleted file mode 100644
index 51d5826..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_radiogroup_vertical.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0.png
deleted file mode 100644
index 29e70c9..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
deleted file mode 100644
index a56b6fc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_0_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
deleted file mode 100644
index 3c9c871..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
deleted file mode 100644
index 4fed789..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_2point5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5.png
deleted file mode 100644
index a54d3b1..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
deleted file mode 100644
index 3ca63be..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_ratingbar_5_pressed.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview.png
deleted file mode 100644
index 22ee0dc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query.png
deleted file mode 100644
index f357908..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query_hint.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query_hint.png
deleted file mode 100644
index d067f1c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_searchview_query_hint.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_0.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_0.png
deleted file mode 100644
index fa5d5c0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_0.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_100.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_100.png
deleted file mode 100644
index 5b3d7a4..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_100.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_50.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_50.png
deleted file mode 100644
index fb09194..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_seekbar_50.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_spinner.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_spinner.png
deleted file mode 100644
index 1791d39..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_spinner.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch.png
deleted file mode 100644
index 9718fc0..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch_checked.png
deleted file mode 100644
index 4bc4b06..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_switch_checked.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_tabhost.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_tabhost.png
deleted file mode 100644
index 3cac2d2..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_tabhost.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_textview.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_textview.png
deleted file mode 100644
index fcb761b..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_textview.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_timepicker.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_timepicker.png
deleted file mode 100644
index ecf23ac..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_timepicker.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button.png
deleted file mode 100644
index 2eb2ffc..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button.png
+++ /dev/null
Binary files differ
diff --git a/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button_checked.png b/tests/tests/holo/res/drawable-xxxhdpi/holo_wallpaper_toggle_button_checked.png
deleted file mode 100644
index 5580a0c..0000000
--- a/tests/tests/holo/res/drawable-xxxhdpi/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 216238d..0000000
--- a/tests/tests/holo/src/android/holo/cts/AllThemesIterator.java
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * 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.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 9301d1e..0000000
--- a/tests/tests/holo/src/android/holo/cts/BitmapAssets.java
+++ /dev/null
@@ -1,136 +0,0 @@
-/*
- * 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.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 37d3e75..0000000
--- a/tests/tests/holo/src/android/holo/cts/BitmapDeletionActivity.java
+++ /dev/null
@@ -1,103 +0,0 @@
-/*
- * 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.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 66ac27f..0000000
--- a/tests/tests/holo/src/android/holo/cts/DisplayInfoActivity.java
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * 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.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_400:
-                return "400dpi";
-
-            case DisplayMetrics.DENSITY_XXHIGH:
-                return "xxdpi";
-
-            case DisplayMetrics.DENSITY_XXXHIGH:
-                return "xxxdpi";
-
-            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 d5a2e15..0000000
--- a/tests/tests/holo/src/android/holo/cts/HoloTest.java
+++ /dev/null
@@ -1,148 +0,0 @@
-/*
- * 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.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 32e21d8..0000000
--- a/tests/tests/holo/src/android/holo/cts/HoloTestUtilitiesActivity.java
+++ /dev/null
@@ -1,149 +0,0 @@
-/*
- * 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.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 6903875..0000000
--- a/tests/tests/holo/src/android/holo/cts/LayoutAdapter.java
+++ /dev/null
@@ -1,357 +0,0 @@
-/*
- * 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.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 73e3148..0000000
--- a/tests/tests/holo/src/android/holo/cts/LayoutModifier.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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.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 8cef2d9..0000000
--- a/tests/tests/holo/src/android/holo/cts/LayoutPickerActivity.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * 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.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 16705d5..0000000
--- a/tests/tests/holo/src/android/holo/cts/LayoutTestActivity.java
+++ /dev/null
@@ -1,310 +0,0 @@
-/*
- * 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.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();
-    private static final boolean DEBUG = false;
-
-    // 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);
-
-        if (DEBUG) {
-            Log.i(TAG, "onCreate theme:" + themeIndex + " layout:" + layoutIndex +
-                    " mode:" + layoutMode + " task:" + task);
-        }
-        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) {
-        if (DEBUG) {
-            Log.i(TAG, "finishWithResult finishing:" + 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 660a6bf..0000000
--- a/tests/tests/holo/src/android/holo/cts/ReferenceViewGroup.java
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * 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.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 4bb0a04..0000000
--- a/tests/tests/holo/src/android/holo/cts/SingleLayoutIterator.java
+++ /dev/null
@@ -1,63 +0,0 @@
-/*
- * 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.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 c628f65..0000000
--- a/tests/tests/holo/src/android/holo/cts/SingleThemeIterator.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * 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.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 e0b529f..0000000
--- a/tests/tests/holo/src/android/holo/cts/SingleThemeLayoutIterator.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * 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.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 9ce5ab6..0000000
--- a/tests/tests/holo/src/android/holo/cts/ThemeAdapter.java
+++ /dev/null
@@ -1,196 +0,0 @@
-/*
- * 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.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 ad6de0f..0000000
--- a/tests/tests/holo/src/android/holo/cts/ThemePickerActivity.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * 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.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 4f6742f..0000000
--- a/tests/tests/holo/src/android/holo/cts/ThemeTestActivity.java
+++ /dev/null
@@ -1,219 +0,0 @@
-/*
- * 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.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();
-    private static final boolean DEBUG = false;
-
-    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
-                if (DEBUG) {
-                    Log.i(TAG, "generateNextBitmap finishing");
-                }
-                setResult(RESULT_OK);
-                finish();
-            }
-        }
-    }
-
-    @Override
-    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
-        if (DEBUG) {
-            Log.i(TAG,  "onActivityResult req:" + requestCode + " res:" + resultCode);
-        }
-        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 3f1d96b..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/AbstractLayoutModifier.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * 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.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 8512a5f..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/AlertDialogBuilder.java
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * 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.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();
-    }
-}
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 a1a232c..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/CalendarViewModifier.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * 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.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 bfaf197..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DatePickerModifier.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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.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 5cd1ad1..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DialogBuilder.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * 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.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);
-}
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 dc4e11f..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/DialogModifier.java
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * 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.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 0cf6fa3..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressBarModifier.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * 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.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 ae5dd6b..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ProgressDialogBuilder.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * 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.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 5c7386f..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/SearchViewModifier.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * 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.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 13fb5ac..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/TabHostModifier.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * 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.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 832d130..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/TimePickerModifier.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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.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 e07d42e..0000000
--- a/tests/tests/holo/src/android/holo/cts/modifiers/ViewPressedModifier.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * 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.holo.cts.modifiers;
-
-import android.view.View;
-
-public class ViewPressedModifier extends AbstractLayoutModifier {
-
-    @Override
-    public View modifyView(View view) {
-        view.setPressed(true);
-        return view;
-    }
-}